home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Utilities / Programming / EnterAct 3.5 / Drag_on Modules / hAWK example progs / $Index_DeNumber < prev    next >
Encoding:
Text File  |  1994-01-26  |  182 b   |  10 lines  |  [TEXT/KEEN]

  1. #$Index_DeNumber : intended to strip numbers from an index,
  2. #leaving only the index entries. For repaging an index.
  3.  
  4.  
  5. match($0, /[0-9]/)    {
  6.     $0 = substr($0, 1, RSTART-1)
  7.     }
  8.  
  9.     {print}
  10.